home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CICA 1995 September (Japanese)
/
CICA Shareware for Windows CD-ROM (Walnut Creek) (September 1995) (Japanese) (Disc 2).iso
/
disc2
/
patches
/
symantec
/
rtlinc.exe
/
ASSERT.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-05-25
|
501 b
|
28 lines
/*_ assert.h Fri May 12 1989 Modified by: Walter Bright */
#if __cplusplus
extern "C" {
#endif
#undef assert
#ifdef NDEBUG
#define assert(ignore) ((void) 0)
#else
#define assert(e) ((void)((e) || (_assert(#e,__FILE__,__LINE__),1)))
extern void
#ifdef __STDC__
#elif __OS2__ && __INTSIZE == 4
__stdcall
#else
__cdecl
#endif
_assert(const char *,const char *,unsigned);
#pragma noreturn(_assert)
#endif
#if __cplusplus
}
#endif